home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / a2701_95.zip / ARGUS.EXE / 0 / RCDATA / TEVENTSFORM / TEVENTSFORM.txt
Text File  |  1997-07-16  |  2KB  |  134 lines

  1. object EventsForm: TEventsForm
  2.   Left = 61
  3.   Top = 59
  4.   BorderStyle = bsDialog
  5.   Caption = 'Events Configuration'
  6.   ClientHeight = 258
  7.   ClientWidth = 416
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnClose = FormClose
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object lv: TListView
  20.     Left = 4
  21.     Top = 5
  22.     Width = 325
  23.     Height = 204
  24.     ColumnClick = False
  25.     OnClick = lvClick
  26.     Columns = <
  27.       item
  28.         Caption = 'Name'
  29.         Width = 120
  30.       end
  31.       item
  32.         Caption = 'Cron'
  33.         Width = 100
  34.       end
  35.       item
  36.         Caption = 'Length'
  37.       end
  38.       item
  39.         Caption = 'Atoms'
  40.         Width = 51
  41.       end>
  42.     ReadOnly = True
  43.     HotTrack = True
  44.     OnChange = lvChange
  45.     PopupMenu = PopupMenu
  46.     TabOrder = 0
  47.     ViewStyle = vsReport
  48.   end
  49.   object bNew: TButton
  50.     Left = 340
  51.     Top = 8
  52.     Width = 64
  53.     Height = 23
  54.     Caption = '&New'
  55.     TabOrder = 4
  56.     OnClick = bNewClick
  57.   end
  58.   object bEdit: TButton
  59.     Left = 340
  60.     Top = 36
  61.     Width = 64
  62.     Height = 23
  63.     Caption = '&Edit'
  64.     TabOrder = 5
  65.     OnClick = bEditClick
  66.   end
  67.   object bCopy: TButton
  68.     Left = 340
  69.     Top = 64
  70.     Width = 64
  71.     Height = 23
  72.     Caption = '&Copy'
  73.     TabOrder = 6
  74.     OnClick = bCopyClick
  75.   end
  76.   object bDelete: TButton
  77.     Left = 340
  78.     Top = 92
  79.     Width = 64
  80.     Height = 23
  81.     Caption = 'Dele&te'
  82.     TabOrder = 7
  83.     OnClick = bDeleteClick
  84.   end
  85.   object bOK: TButton
  86.     Left = 88
  87.     Top = 218
  88.     Width = 72
  89.     Height = 25
  90.     Caption = 'OK'
  91.     Default = True
  92.     ModalResult = 1
  93.     TabOrder = 1
  94.   end
  95.   object bCancel: TButton
  96.     Left = 168
  97.     Top = 218
  98.     Width = 72
  99.     Height = 25
  100.     Cancel = True
  101.     Caption = 'Cancel'
  102.     ModalResult = 2
  103.     TabOrder = 2
  104.   end
  105.   object bHelp: TButton
  106.     Left = 248
  107.     Top = 218
  108.     Width = 72
  109.     Height = 25
  110.     Caption = 'Help'
  111.     TabOrder = 3
  112.     OnClick = bHelpClick
  113.   end
  114.   object PopupMenu: TPopupMenu
  115.     Left = 354
  116.     Top = 172
  117.     object ppNew: TMenuItem
  118.       Caption = '&New'
  119.     end
  120.     object N1: TMenuItem
  121.       Caption = '-'
  122.     end
  123.     object ppEdit: TMenuItem
  124.       Caption = '&Edit'
  125.     end
  126.     object ppCopy: TMenuItem
  127.       Caption = '&Copy'
  128.     end
  129.     object ppDelete: TMenuItem
  130.       Caption = 'Dele&te'
  131.     end
  132.   end
  133. end
  134.